Trình soạn thảo văn bản đơn giản Trong C# mới

1 namespace Best_Notepad
2 {
3     
partial class SpeechForm
4     {

5         ///
<summary>
6         ///
Required designer variable.
7         ///
</summary>
8         
private System.ComponentModel.IContainer components = null;
9
10         ///
<summary>
11         ///
Clean up any resources being used.
12         ///
</summary>
13         ///
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14         
protected override void Dispose(bool disposing)
15         {
16             
if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             
base.Dispose(disposing);
21         }
22
23         
#region Windows Form Designer generated code
24
25         ///
<summary>
26         ///
Required method for Designer support - do not modify
27         ///
the contents of this method with the code editor.
28         ///
</summary>
29         
private void InitializeComponent()
30         {
31             System.ComponentModel.ComponentResourceManager resources =
new System.ComponentModel.ComponentResourceManager(typeof(SpeechForm));
32             
this.textBox1 = new System.Windows.Forms.TextBox();
33             
this.speakbutton = new System.Windows.Forms.Button();
34             
this.soundtrackBar = new System.Windows.Forms.TrackBar();
35             
this.label1 = new System.Windows.Forms.Label();
36             
this.speedtrackBar = new System.Windows.Forms.TrackBar();
37             
this.label3 = new System.Windows.Forms.Label();
38             
this.personcomboBox = new System.Windows.Forms.ComboBox();
39             
this.label4 = new System.Windows.Forms.Label();
40             ((System.ComponentModel.ISupportInitialize)(
this.soundtrackBar)).BeginInit();
41             ((System.ComponentModel.ISupportInitialize)(
this.speedtrackBar)).BeginInit();
42             
this.SuspendLayout();
43             
//
44             
// textBox1
45             
//
46             
this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
47             
this.textBox1.Location = new System.Drawing.Point(-2, 34);
48             
this.textBox1.Multiline = true;
49             
this.textBox1.Name = "textBox1";
50             
this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
51             
this.textBox1.Size = new System.Drawing.Size(440, 330);
52             
this.textBox1.TabIndex = 0;
53             
//
54             
// speakbutton
55             
//
56             
this.speakbutton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
57             
this.speakbutton.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
58             
this.speakbutton.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
59             
this.speakbutton.Location = new System.Drawing.Point(1, 2);
60             
this.speakbutton.Name = "speakbutton";
61             
this.speakbutton.Size = new System.Drawing.Size(130, 31);
62             
this.speakbutton.TabIndex = 1;
63             
this.speakbutton.Text = "&Speak";
64             
this.speakbutton.UseVisualStyleBackColor = true;
65             
this.speakbutton.Click += new System.EventHandler(this.speakbutton_Click);
66             
//
67             
// soundtrackBar
68             
//
69             
this.soundtrackBar.Location = new System.Drawing.Point(318, 367);
70             
this.soundtrackBar.Maximum = 100;
71             
this.soundtrackBar.Name = "soundtrackBar";
72             
this.soundtrackBar.Size = new System.Drawing.Size(104, 45);
73             
this.soundtrackBar.TabIndex = 2;
74             
this.soundtrackBar.Value = 75;
75             
//
76             
// label1
77             
//
78             
this.label1.AutoSize = true;
79             
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
80             
this.label1.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
81             
this.label1.Location = new System.Drawing.Point(270, 372);
82             
this.label1.Name = "label1";
83             
this.label1.Size = new System.Drawing.Size(52, 13);
84             
this.label1.TabIndex = 3;
85             
this.label1.Text = "&Volume:";
86             
this.label1.Click += new System.EventHandler(this.label1_Click);
87             
//
88             
// speedtrackBar
89             
//
90             
this.speedtrackBar.Location = new System.Drawing.Point(73, 367);
91             
this.speedtrackBar.Minimum = -10;
92             
this.speedtrackBar.Name = "speedtrackBar";
93             
this.speedtrackBar.Size = new System.Drawing.Size(104, 45);
94             
this.speedtrackBar.TabIndex = 5;
95             
//
96             
// label3
97             
//
98             
this.label3.AutoSize = true;
99             
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
100             
this.label3.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
101             
this.label3.Location = new System.Drawing.Point(26, 372);
102             
this.label3.Name = "label3";
103             
this.label3.Size = new System.Drawing.Size(47, 13);
104             
this.label3.TabIndex = 3;
105             
this.label3.Text = "&Speed:";
106             
//
107             
// personcomboBox
108             
//
109             
this.personcomboBox.BackColor = System.Drawing.Color.LightGray;
110             
this.personcomboBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
111             
this.personcomboBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
112             
this.personcomboBox.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
113             
this.personcomboBox.FormattingEnabled = true;
114             
this.personcomboBox.Items.AddRange(new object[] {
115             
"Male",
116             
"Female"});
117             
this.personcomboBox.Location = new System.Drawing.Point(371, 6);
118             
this.personcomboBox.Name = "personcomboBox";
119             
this.personcomboBox.Size = new System.Drawing.Size(67, 23);
120             
this.personcomboBox.TabIndex = 6;
121             
this.personcomboBox.Text = "Male";
122             
//
123             
// label4
124             
//
125             
this.label4.AutoSize = true;
126             
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
127             
this.label4.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
128             
this.label4.Location = new System.Drawing.Point(313, 9);
129             
this.label4.Name = "label4";
130             
this.label4.Size = new System.Drawing.Size(58, 13);
131             
this.label4.TabIndex = 3;
132             
this.label4.Text = "&Voice of:";
133             
this.label4.Click += new System.EventHandler(this.label1_Click);
134             
//
135             
// SpeechForm
136             
//
137             
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
138             
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
139             
this.BackColor = System.Drawing.SystemColors.ButtonShadow;
140             
this.ClientSize = new System.Drawing.Size(440, 400);
141             
this.Controls.Add(this.personcomboBox);
142             
this.Controls.Add(this.speedtrackBar);
143             
this.Controls.Add(this.label3);
144             
this.Controls.Add(this.label4);
145             
this.Controls.Add(this.label1);
146             
this.Controls.Add(this.soundtrackBar);
147             
this.Controls.Add(this.speakbutton);
148             
this.Controls.Add(this.textBox1);
149             
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
150             
this.MaximizeBox = false;
151             
this.MinimizeBox = false;
152             
this.Name = "SpeechForm";
153             
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
154             
this.Text = "SPEECH-BOX Hassan Malik";
155             ((System.ComponentModel.ISupportInitialize)(
this.soundtrackBar)).EndInit();
156             ((System.ComponentModel.ISupportInitialize)(
this.speedtrackBar)).EndInit();
157             
this.ResumeLayout(false);
158             
this.PerformLayout();
159
160         }
161
162         
#endregion
163
164         
private System.Windows.Forms.TextBox textBox1;
165         
private System.Windows.Forms.Button speakbutton;
166         
private System.Windows.Forms.TrackBar soundtrackBar;
167         
private System.Windows.Forms.Label label1;
168         
private System.Windows.Forms.TrackBar speedtrackBar;
169         
private System.Windows.Forms.Label label3;
170         
private System.Windows.Forms.ComboBox personcomboBox;
171         
private System.Windows.Forms.Label label4;
172     }
173 }


Gõ tìm kiếm nhanh...